Ejemplo n.º 1
0
 /// <summary>
 /// Update Notes by account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public static void UpdateNotes(string id, string type, string note,int noteId)
 {
     ApiServiceNotes notes = new ApiServiceNotes();
     notes.UpdateNote(id, type, note,noteId);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Get Type Notes by account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public static getNoteTypesResponse GetTypes()
 {
     ApiServiceNotes notes = new ApiServiceNotes();
     return notes.GetTypeNotes();
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Insert Notes by account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public static void InsertNotes(string id, string type, string note)
 {
     ApiServiceNotes notes = new ApiServiceNotes();
     notes.InsertNote(id, type, note);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Delete Notes by account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public static void DeleteNotes(int noteId)
 {
     ApiServiceNotes notes = new ApiServiceNotes();
     notes.DeleteNote(noteId);
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Returns Notes by account
 /// </summary>
 /// <param name="id"></param>
 /// <returns></returns>
 public static getAccountNotesResponse GetAccountNotes(string id)
 {
     ApiServiceNotes notes = new ApiServiceNotes();
     return notes.GetAccountNotes(id);
 }
Ejemplo n.º 6
0
        /// <summary>
        /// Get Type Notes by account
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public static WipService.getNoteTypesResponse GetTypes()
        {
            ApiServiceNotes notes = new ApiServiceNotes();

            return(notes.GetTypeNotes());
        }
Ejemplo n.º 7
0
        /// <summary>
        /// Delete Notes by account
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public static void DeleteNotes(int noteId)
        {
            ApiServiceNotes notes = new ApiServiceNotes();

            notes.DeleteNote(noteId);
        }
Ejemplo n.º 8
0
        /// <summary>
        /// Update Notes by account
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public static void UpdateNotes(string id, string type, string note, int noteId)
        {
            ApiServiceNotes notes = new ApiServiceNotes();

            notes.UpdateNote(id, type, note, noteId);
        }
Ejemplo n.º 9
0
        /// <summary>
        /// Insert Notes by account
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public static void InsertNotes(string id, string type, string note)
        {
            ApiServiceNotes notes = new ApiServiceNotes();

            notes.InsertNote(id, type, note);
        }
Ejemplo n.º 10
0
        /// <summary>
        /// Returns Notes by account
        /// </summary>
        /// <param name="id"></param>
        /// <returns></returns>
        public static WipService.getAccountNotesResponse GetAccountNotes(string id)
        {
            ApiServiceNotes notes = new ApiServiceNotes();

            return(notes.GetAccountNotes(id));
        }