Ejemplo n.º 1
0
 public MovieMasterController(IMovieInfoService MovieService, IConfiguration configuration, IListResponseHandler <Movie> ListResponse,
                              IObjectResponseHandler <Movie> ObjectResponse, IResourceService messageService, IHostingEnvironment hostingEnvironment)
 {
     _MovieService       = IMovieInfoService;
     _configuration      = configuration;
     _ObjectResponse     = ObjectResponse;
     _ListResponse       = ListResponse;
     _messageService     = messageService;
     _hostingEnvironment = hostingEnvironment;
 }
Ejemplo n.º 2
0
 public UserDetailController(IUserMasterService UserService, IConfiguration configuration, IListResponseHandler <UserMasterEntity> ListResponse,
                             IObjectResponseHandler <UserMasterEntity> ObjectResponse, IDataTableResponseHandler <UserMasterEntity> DatatableResponse, IResourceService messageService)
 {
     _UserService       = UserService;
     _configuration     = configuration;
     _ObjectResponse    = ObjectResponse;
     _ListResponse      = ListResponse;
     _DatatableResponse = DatatableResponse;
     _messageService    = messageService;
 }