public void AddRestaurantZoneTest() { // TODO: add unit test for the method 'AddRestaurantZone' int? restaurantId = null; // TODO: replace null with proper value ZoneCreate contract = null; // TODO: replace null with proper value instance.AddRestaurantZone(restaurantId, contract); }
public void UpdateWaiterZoneTest() { // TODO: add unit test for the method 'UpdateWaiterZone' int? restaurantId = null; // TODO: replace null with proper value int? waiterId = null; // TODO: replace null with proper value ZoneCreate contract = null; // TODO: replace null with proper value instance.UpdateWaiterZone(restaurantId, waiterId, contract); }
public void Init() { instance = new ZoneCreate(); }