public ConsumerAuthorizationService(
     UserManager <ApplicationUser> userManager,
     IPasswordHasher <ApplicationUser> passwordHasher,
     RoleManager <IdentityRole> roleManager,
     UtilitiesContext context
     )
 {
     _userManager    = userManager;
     _passwordHasher = passwordHasher;
     _roleManager    = roleManager;
     _context        = context;
 }
 public BillTypeRepository(UtilitiesContext context)
 {
     _context = context;
 }
 public UtilitiesContext Init()
 {
     return _context ?? (_context = new UtilitiesContext());
 }
 public BillProviderRepository(UtilitiesContext context)
 {
     _context = context;
 }
 public UtilitiesContext Init()
 {
     return(_context ?? (_context = new UtilitiesContext()));
 }