protected BaseAreaRepository(IAreaContext areaContext)
 {
     _areaContext = areaContext;
 }
示例#2
0
 public AreaService(IAreaContext context)
 {
     _context = context ?? throw new NullReferenceException(nameof(context));
 }