public GcController(ITvRepostitory repostiory, IUnitOfWork unitOfWork, IMapper mapper, TvContext context)
 {
     this.repostiory = repostiory;
     this.unitOfWork = unitOfWork;
     this.mapper     = mapper;
     this._context   = context;
 }
Пример #2
0
 public TvController(ITvRepostitory repostiory, IUnitOfWork unitOfWork, IMapper mapper)
 {
     this.repostiory = repostiory;
     this.unitOfWork = unitOfWork;
     this.mapper     = mapper;
 }