private void Dispose(bool disposing)
 {
     if (disposing)
     {
         if (_contex != null)
         {
             _contex.Dispose();
             _contex = null;
         }
     }
 }
예제 #2
0
 public YearRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
 public TypeEquipmentRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
예제 #4
0
 public DayOfMonthRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
예제 #5
0
 public PhoneCompanyRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
예제 #6
0
 public AddressUserRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
 public CategoryVideoRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
예제 #8
0
 public ControlLoanRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
 public ProfileUserRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
예제 #10
0
 public BalanceRepository(FasterTvIndoorDataContext context)
 {
     this._context = context;
 }
 public UnitOfWork(FasterTvIndoorDataContext context)
 {
     _contex = context;
 }