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