public void UserProjectAllocationThrowsError()
 {
     var client = new TargetProcessClient
     {
         ApiSiteInfo = new ApiSiteInfo(TargetProcessRoutes.Route.UserProjectAllocations)
     };
     var userProjectAllocation = new UserProjectAllocation
     {
     };
 }
Esempio n. 2
0
 public IApiResponse <UserProjectAllocation> CreateUserProjectAllocation(UserProjectAllocation userProjectAllocation) => CreateData <UserProjectAllocation>(userProjectAllocation);
Esempio n. 3
0
 public Task <IApiResponse <UserProjectAllocation> > CreateUserProjectAllocationAsync(UserProjectAllocation userProjectAllocation) => CreateDataAsync <UserProjectAllocation>(userProjectAllocation);
Esempio n. 4
0
 public void CreateUserProjectAllocationThrowsError()
 {
     var client = CommonMethods.GetClientByRoute(TargetProcessRoutes.Route.ProjectAllocations);
     var userProjectAllocation = new UserProjectAllocation();
 }