예제 #1
0
 public bool Create(string password, string city, string state, ref string response)
 {
     using (WorkWithMeDataContext oDC = new WorkWithMeDataContext())
     {
         if (oDC.spCreateUser(Username, password, FirstName, MiddleInitial, LastName, Zip, Address, city, state, IsAddressPrivate, Email, ref response) == 0)
         {
             return(false);
         }
         else
         {
             return(true);
         }
     }
 }