Example #1
0
        // Note: Due to the immutability of endpoints, If you want to use filtering etc you will need to make requests via the endpoints themselves, not using the sugar methods below

        public async Task <IEnumerable <LeaveApplication> > CreateAsync(IEnumerable <LeaveApplication> items)
        {
            return(await LeaveApplications.CreateAsync(items));
        }
Example #2
0
 public async Task <LeaveApplication> CreateAsync(LeaveApplication item)
 {
     return(await LeaveApplications.CreateAsync(item));
 }