public bool agregarEmpresa(string usuario, string password, int rut, int rubro_id, int comuna_id, string razon_social, string telefono, string direccion, string mail) { int usuarioEmpresaId = 0; try { USUARIO_EMPRESA usuarioEmpresa = new USUARIO_EMPRESA(); usuarioEmpresa.ESTADO_USUARIO_ID = 1; usuarioEmpresa.USUARIO = usuario; usuarioEmpresa.PASS = password; //HASHEAR db.USUARIO_EMPRESAs.InsertOnSubmit(usuarioEmpresa); db.SubmitChanges(); usuarioEmpresaId = usuarioEmpresa.USUARIO_EMPRESA_ID; EMPRESA empresa = new EMPRESA(); empresa.RUT = rut; empresa.RUBRO_ID = rubro_id; empresa.COMUNA_ID = comuna_id; empresa.USUARIO_EMPRESA_ID = usuarioEmpresaId; empresa.RAZON_SOCIAL = razon_social; empresa.TELEFONO = telefono; empresa.DIRECCION = direccion; empresa.MAIL = mail; db.EMPRESAs.InsertOnSubmit(empresa); db.SubmitChanges(); return true; } catch { return false; } }
partial void DeleteEMPRESA(EMPRESA instance);
partial void UpdateEMPRESA(EMPRESA instance);
partial void InsertEMPRESA(EMPRESA instance);
private void detach_EMPRESAs(EMPRESA entity) { this.SendPropertyChanging(); entity.USUARIO_EMPRESA = null; }
private void detach_EMPRESAs(EMPRESA entity) { this.SendPropertyChanging(); entity.RUBRO = null; }
private void attach_EMPRESAs(EMPRESA entity) { this.SendPropertyChanging(); entity.RUBRO = this; }