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

            CSVDataEntities = new List <CSVData>();
        }
Esempio n. 9
0
 public HomeController(IRepostory <Student> repostory)
 {
     this._repostory = repostory;
 }
Esempio n. 10
0
        public HomeController(IRepostory <OgrModel> ogrenci)
        {
            //_Repostory = new OgrRepostory();

            _Repostory = ogrenci;
        }
Esempio n. 11
0
 public GameController(IRepostory repostory)
 {
     Repostory = repostory;
 }