Ejemplo n.º 1
0
 public AccountController(UserManager <ApplicationUser> userManager, ILogger loggger
                          , IOfficeExecutiveService officeExecutiveService, IAspNetRoleService roleService
                          , IAspNetUserService aspNetUserService, IUserInfoSPService userInfoSPService
                          , ISecurityService securityService, ISPService sPService
                          , IOrganizationService organizationService, IGroupSetupService groupSetupService)
 {
     this.userManager            = userManager;
     this.loggger                = loggger;
     this.officeExecutiveService = officeExecutiveService;
     this.roleService            = roleService;
     this.aspNetUserService      = aspNetUserService;
     this.userInfoSPService      = userInfoSPService;
     this.securityService        = securityService;
     this.sPService              = sPService;
     this.organizationService    = organizationService;
     this.groupSetupService      = groupSetupService;
 }
Ejemplo n.º 2
0
 public OfficeExecutiveController(IOfficeExecutiveService officeExecutiveService, IOrganizationService organizationService
                                  , IDesignationService designationService, IDepartmentService departmentService
                                  , IGenderService genderService, IDivisionService divisionService, IDistrictService districtService
                                  , IThanaService thanaService, ICountryService countryService, ITeamService teamService
                                  , IProfessionService professionService, ISPService spService)
 {
     this.officeExecutiveService = officeExecutiveService;
     this.organizationService    = organizationService;
     this.designationService     = designationService;
     this.departmentService      = departmentService;
     this.genderService          = genderService;
     this.divisionService        = divisionService;
     this.districtService        = districtService;
     this.thanaService           = thanaService;
     this.countryService         = countryService;
     this.teamService            = teamService;
     this.professionService      = professionService;
     this.spService = spService;
 }