コード例 #1
0
ファイル: ClienteContato.cs プロジェクト: YuleSouza/Loja
 public ClienteContato( int clienteContatoId, int clienteId, string email, string telefone, bool ativo, Cliente cliente)
 {
     ClienteContatoId = clienteContatoId;
     ClienteId = clienteId;
     Email = email;
     Telefone = telefone;
     Ativo = ativo;
     Cliente = cliente;
 }
コード例 #2
0
ファイル: EmpresaCliente.cs プロジェクト: YuleSouza/Loja
 public EmpresaCliente(int empresaClienteId, int? clienteId, int? empresaId, bool? ativo, Cliente cliente, Empresa empresa)
 {
     EmpresaClienteId = empresaClienteId;
     ClienteId = clienteId;
     EmpresaId = empresaId;
     Ativo = ativo;
     Cliente = cliente;
     Empresa = empresa;
 }
コード例 #3
0
ファイル: ClienteService.svc.cs プロジェクト: YuleSouza/Loja
 public void Delete(Cliente obj)
 {
     throw new NotImplementedException();
 }