Beispiel #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="repositoryContext"></param>
 public GatewaysRepository(EDMIDBContext context) : base(context)
 {
     _context = context;
 }
Beispiel #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="repositoryContext"></param>
 public WaterMeterRepository(EDMIDBContext context) : base(context)
 {
     _context = context;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="repositoryContext"></param>
 public ElectricMeterRepository(EDMIDBContext context) : base(context)
 {
     _context = context;
 }
Beispiel #4
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="repositoryContext"></param>
 public RepositoryBase(EDMIDBContext repositoryContext)
 {
     this.RepositoryContext = repositoryContext;
 }