Exemplo n.º 1
0
 public void Move(string current, string exchange, string userId)
 {
     FormApproveListRepository.Move(current, exchange, userId);
 }
Exemplo n.º 2
0
 public void Delete(string id)
 {
     FormApproveListRepository.Delete(id);
 }
Exemplo n.º 3
0
 public void Save(FormApproveListEntity entity)
 {
     FormApproveListRepository.Save(entity);
 }
Exemplo n.º 4
0
 public IList <FormApproveListEntity> Get(FormType formType)
 {
     return(FormApproveListRepository.Get(formType));
 }