Beispiel #1
0
 public string LogInBlog(Account pAccountBlog)
 {
     try
     {
         return "";
     }
     catch
     {
         return "";
     }
 }
Beispiel #2
0
 public string LogInAdmin(Account pAccountAdmin)
 {
     try
     {
         return "";
     }
     catch
     {
         return "";
     }
 }
Beispiel #3
0
 public void CreateAccount(Account Data)
 {
     Data.CreatedDate = DateTime.Now;
     _db.Accounts.Add(Data);
     _db.SaveChanges();
 }