public BusinessesController(
     IMapper mapper,
     MannuDbContext context)
 {
     _mapper  = mapper;
     _context = context;
 }
Exemple #2
0
 public AddressController(
     IMapper mapper,
     MannuDbContext context)
 {
     _context = context;
     _mapper  = mapper;
 }