public CuisineController(BusinessWrapper businessWrapper) : base(businessWrapper) { _businessBase = new BusinessBase<Cuisine>(businessWrapper._serviceProvider); }
public BaseController(BusinessWrapper businessWrapper) { _businessWrapper = businessWrapper; }
public CategoryController(BusinessWrapper businessWrapper) : base(businessWrapper) { _businessBase = new BusinessBase <Category>(businessWrapper._serviceProvider); }
public BlogController(BusinessWrapper businessWrapper) : base(businessWrapper) { _businessBase = new BusinessBase <Blogs>(businessWrapper._serviceProvider); }
public ResturantController(BusinessWrapper businessWrapper) : base(businessWrapper) { }
public AccountController(BusinessWrapper businessWrapper) : base(businessWrapper) { }
public AreaController(BusinessWrapper businessWrapper) : base(businessWrapper) { _businessBase = new BusinessBase <Area>(businessWrapper._serviceProvider); }