//context bdd
        public AuthService(BookYourCarContext context, CustomIdentityErrorDescriber errors = null)
        {
            _context = context;

            Describer = errors ?? new CustomIdentityErrorDescriber();
        }
 public LocationService(BookYourCarContext context, CustomIdentityErrorDescriber errors = null)
 {
     _context = context;
 }
 public PlanningService(BookYourCarContext context, CustomIdentityErrorDescriber errors = null)
 {
     _context = context;
 }