public OperatingSystemController(IOperatingSystemAppService srv,
                                  IMapper <AvOperatingSystem, OperatingSystemCrudViewModel> crudMapper, IMapper <AvOperatingSystem, OperatingSystemListViewModel> listMapper, IMapper <AvOperatingSystem, OperatingSystemSelectListViewModel> selectListMapper)
     : base(srv, crudMapper, listMapper, selectListMapper)
 {
     _service    = srv;
     CrudOnIndex = true;
     AutoFilter  = true;
 }
Esempio n. 2
0
 public ServerController(Application.Main.Interfaces.SunucuEnvanter.ISunucuEnvanterServerAppService srv,
                         IMapper <AvServer, ServerCrudViewModel> crudMapper, IMapper <AvServer, ServerListViewModel> listMapper, IMapper <AvServer, ServerSelectListViewModel> selectListMapper,
                         IServerTipiAppService service1, ILokasyonAppService service2, IOperatingSystemAppService service3, IYoneticiServerAppService service4, ISunucuEnvanterLinkedServers service5,
                         ISunucuEnvanterAppService service6)
     : base(srv, crudMapper, listMapper, selectListMapper)
 {
     _service = srv;
     _serverTipiAppService      = service1;
     _lokasyonAppService        = service2;
     _operatingSystemAppService = service3;
     _yoneticiServerService     = service4;
     _linkedService             = service5;
     _appService = service6;
     CrudOnIndex = true;
     AutoFilter  = true;
 }