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