public CSVDataController(IRepostory <CSVData, int> repostory)
 {
     _repostory = repostory;
 }
Пример #2
0
 public ProductService(IUnitOfWork unitOfWork, IRepostory <Product> repostory) : base(unitOfWork, repostory)
 {
 }
 public SitesController(IRepostory <Site, int> repostory)
 {
     _repostory = repostory;
 }
Пример #4
0
 public Service(IUnitOfWork unitOfWork, IRepostory <TEtity> repostory)
 {
     _unitOfWork = unitOfWork;
     _repostory  = repostory;
 }
Пример #5
0
 public HomeController(IRepostory <OgrModel> ogrenci)
 {
     _Repostory = ogrenci;
 }
Пример #6
0
 public CategoryService(IUnitOfWork unitOfWork, IRepostory <Category> repostory) : base(unitOfWork, repostory)
 {
 }
Пример #7
0
 public HomeController(IRepostory _repostory)
 {
     repostory = _repostory;
 }
        public CSVDataService(IRepostory <CSVData, int> repostory)
        {
            _repostory = repostory;

            CSVDataEntities = new List <CSVData>();
        }
Пример #9
0
 public HomeController(IRepostory <Student> repostory)
 {
     this._repostory = repostory;
 }
Пример #10
0
        public HomeController(IRepostory <OgrModel> ogrenci)
        {
            //_Repostory = new OgrRepostory();

            _Repostory = ogrenci;
        }
Пример #11
0
 public GameController(IRepostory repostory)
 {
     Repostory = repostory;
 }