Beispiel #1
0
 public UserController(IUserServices userServices, IJwtInterface IJwtInterface, IAuthorityBusinessInterface authorityBusinessInterface)
 {
     _userServices  = userServices;
     _IJwtInterface = IJwtInterface;
     _authorityBusinessInterface = authorityBusinessInterface;
     // _unitOfWork = unitOfWork;
 }
        //private readonly IUnitOfWork _unitOfWork;

        public AdminController(IUserServices userServices, ILogger <AdminController> Apiloger, IDepartmentService departmentService,
                               IAuthorityBusinessInterface authorityBusinessInterface)
        {
            _userServices               = userServices;
            _Apiloger                   = Apiloger;
            _departmentService          = departmentService;
            _authorityBusinessInterface = authorityBusinessInterface;
            //_unitOfWork = unitOfWork;
        }
Beispiel #3
0
 public BankController(IBankHandle bankHandle, IBusinessManServices businessManServices,
                       ICounterCuteGirlServices counterCuteGirlServices,
                       IAuthorityBusinessInterface authorityBusinessInterface)
 {
     _bankHandle                 = bankHandle;
     _businessManServices        = businessManServices;
     _counterCuteGirlServices    = counterCuteGirlServices;
     _authorityBusinessInterface = authorityBusinessInterface;
 }