Пример #1
0
 public bool Update( string Name,  bool IsActive,  bool IsBackendFunction,  Guid RowGuid,  DateTime ModifiedDate,  int Original_SystemFunctionId)
 {
     SystemFunctionDAC systemfunctionComponent = new SystemFunctionDAC();
     return systemfunctionComponent.UpdateSystemFunction( Name,  IsActive,  IsBackendFunction,  RowGuid,  DateTime.Now,  Original_SystemFunctionId);
 }
Пример #2
0
 public bool Update(SystemFunction systemfunction ,int old_systemFunctionId)
 {
     SystemFunctionDAC systemfunctionComponent = new SystemFunctionDAC();
     return systemfunctionComponent.UpdateSystemFunction( systemfunction.Name,  systemfunction.IsActive,  systemfunction.IsBackendFunction,  systemfunction.RowGuid,  DateTime.Now,  old_systemFunctionId);
 }