Ejemplo n.º 1
0
        public async Task <TableType> AddTableAsync(AddTableInput contract)
        {
            var newTable = new Table(contract.RestaurantId, contract.Name, contract.Order, contract.Capacity, contract.Status);

            _dbContext.Set <Table>().Add(newTable);
            await _dbContext.SaveChangesAsync();

            return(new TableType
            {
                Id = newTable.Id,
                Name = newTable.Name,
                Order = newTable.Order,
                Capacity = newTable.Capacity,
                Status = newTable.Status
            });
        }
Ejemplo n.º 2
0
 public async Task <TableType> AddTable(AddTableInput input)
 {
     return(await _tableService.AddTableAsync(input));
 }
Ejemplo n.º 3
0
 public async Task <TableType> AddTable([Parent] Mutation mutation, AddTableInput input)
 {
     return(await mutation.AddTable(input));
 }