This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module app.views.employee.basicInformation { | |
export class add { | |
private employee: any; | |
private addEntry: () => void; | |
private isValidBusinessData: boolean; | |
private directorates: Array<any> | |
private departments: Array<any>; | |
private units: Array<any>; | |
private locations: Array<any>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Data.Common; | |
using Abp.Dependency; | |
using Abp.Domain.Uow; | |
using Abp.EntityFramework; | |
using Abp.MultiTenancy; | |
using Abp.Runtime.Session; | |
using Effort; | |
using Abp.Collections.Extensions; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Abp.MailKit; | |
using Abp.Net.Mail.Smtp; | |
using MailKit.Net.Smtp; | |
using MailKit.Security; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading.Tasks; | |
namespace SystemX.Web.MailBauilder |