public void MustNotBe(int id, DossierStates state) { var d = repo.Get(id); if (d == null) { throw new AsmsEx("acest dosar nu exista"); } if (d.StateId == state) { throw new AsmsEx("acest dosar nu este in statutul necesar pentru aceasta actiune"); } }
public void MustNotBe(int id, DossierStates state) { var d = repo.Get(id); if (d == null) throw new AsmsEx("acest dosar nu exista"); if (d.StateId == state) throw new AsmsEx("acest dosar nu este in statutul necesar pentru aceasta actiune"); }
public int ChangeState(int id, DossierStates stateId) { return(DbUtil.ExecuteNonQuerySp("changeDossierState", new { id, stateId }, Cs)); }