예제 #1
0
파일: DataAccess.cs 프로젝트: xy19xiaoyu/TG
 //权限
 public abstract int CreateNewAuthority(Authority newAuthority);
예제 #2
0
파일: Authority.cs 프로젝트: xy19xiaoyu/TG
 /*** ��̬���� ***/
 /// <summary>
 /// ����Ȩ��
 /// </summary>
 /// <returns></returns>
 public static int InsertAuthority(byte types, string url, string title, string note)
 {
     if (String.IsNullOrEmpty(title))
         throw (new NullReferenceException("title"));
     Authority insertAuthority = new Authority(0, types, url, title, note);
     if (insertAuthority.Save())
     {
         return insertAuthority.AuthorityId;
     }
     else
     {
         return 0;
     }
 }
예제 #3
0
파일: DataAccess.cs 프로젝트: xy19xiaoyu/TG
 public abstract bool UpdateAuthority(Authority newAuthority);