Example #1
0
 public static string InsertNote(object[] param)
 {
     NoteDAL obj = new NoteDAL();
        return obj.InsertNote(param, "exit");
 }
Example #2
0
 public static int InsertNote(string Body, string CreateBy, int NoteType, int CaseID, decimal Num1, string Str1, string Str2, DateTime Date1, DateTime CreateOn, int CompanyID, string contactor, string contactorType, string contractResult)
 {
     return(NoteDAL.InsertNote(Body, CreateBy, NoteType, CaseID, Num1, Str1, Str2, Date1, CreateOn, CompanyID, contactor, contactorType, contractResult));
 }