Exemplo n.º 1
0
 public HoluserRazorModel(IHoluserService CurrentService,
                          SchoolContext context,
                          IMapper Mapper)
 {
     this.CurrentService = CurrentService;
     this.context        = context;
     mapper = Mapper;
     HoluserSort.Initialization(SortConditions);
 }
Exemplo n.º 2
0
        public LoginModel(IHoluserService holuserService)
        {
#if DEBUG
            Username            = "******";
            Password            = "******";
            PasswordType        = "";
            this.holuserService = holuserService;
#endif
        }
Exemplo n.º 3
0
 public LoginController(Microsoft.Extensions.Configuration.IConfiguration configuration,
                        IHoluserService holuserService)
 {
     this.configuration  = configuration;
     this.holuserService = holuserService;
 }
Exemplo n.º 4
0
 public HoluserController(IHoluserService holuserService,
                          IMapper mapper)
 {
     this.holuserService = holuserService;
     this.mapper         = mapper;
 }